home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_11 / pjp / ends.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-02  |  212 b   |  12 lines

  1. -------------------- Listing 12: The file ends.c --------------
  2.  
  3. // ends -- ends(ostream&)
  4. #include <ostream>
  5.  
  6. ostream& ends(ostream& os)
  7.     {    // terminate output string
  8.     os.put('\0');
  9.     return (os);
  10.     }
  11.  
  12.